uint32_t grab_time;
struct wl_surface *pointer_surface;
+ guint cursor_is_default: 1;
GdkCursor *cursor;
guint cursor_timeout_id;
guint cursor_image_index;
}
static void
-gdk_wayland_device_set_surface_cursor (GdkDevice *device,
- GdkSurface *surface,
- GdkCursor *cursor)
+gdk_wayland_device_set_surface_cursor (GdkDevice *device,
+ GdkSurface *surface,
+ GdkCursor *cursor)
{
GdkWaylandSeat *seat = GDK_WAYLAND_SEAT (gdk_device_get_seat (device));
GdkWaylandPointerData *pointer = GDK_WAYLAND_DEVICE (device)->pointer;
if (seat->grab_cursor)
cursor = seat->grab_cursor;
- if (cursor == NULL)
- cursor = gdk_cursor_new_from_name ("default", NULL);
- else
- cursor = g_object_ref (cursor);
-
if (pointer->cursor != NULL &&
+ cursor != NULL &&
gdk_cursor_equal (cursor, pointer->cursor))
- {
- g_object_unref (cursor);
- return;
- }
-
- gdk_wayland_pointer_stop_cursor_animation (pointer);
+ return;
- if (pointer->cursor)
- g_object_unref (pointer->cursor);
+ if (cursor == NULL)
+ {
+ if (!pointer->cursor_is_default)
+ {
+ g_clear_object (&pointer->cursor);
+ pointer->cursor = gdk_cursor_new_from_name ("default", NULL);
+ pointer->cursor_is_default = TRUE;
- pointer->cursor = cursor;
+ gdk_wayland_pointer_stop_cursor_animation (pointer);
+ gdk_wayland_device_update_surface_cursor (device);
+ }
+ else
+ {
+ /* Nothing to do, we'already using the default cursor */
+ }
+ }
+ else
+ {
+ g_set_object (&pointer->cursor, cursor);
+ pointer->cursor_is_default = FALSE;
- gdk_wayland_device_update_surface_cursor (device);
+ gdk_wayland_pointer_stop_cursor_animation (pointer);
+ gdk_wayland_device_update_surface_cursor (device);
+ }
}
static void